home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / T U R B O Language / Turbo Pascal V7.0 / DOCDEMO.ZIP / MINIMAL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-10-30  |  435 b   |  20 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Vision 2.0 Demo                        }
  4. {   Copyright (c) 1992 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. program Minimal;
  9.  
  10. uses App;
  11.  
  12. var
  13.   MyApp: TApplication;
  14.  
  15. begin
  16.   MyApp.Init;
  17.   MyApp.Run;
  18.   MyApp.Done;
  19. end.
  20.